//========================================================================
//  SE5 AI Restricted Solar Systems - Captain Kwok's Balance Mod v125+
//========================================================================
//
// Balance Mod Changes:
// --------------------
// - None
//
// Balance Mod To-do list:
// -----------------------
// - Nothing pending
//
// Script Function Requests:
// -------------------------
// - Sys_Get_List_Of_Systems_To_Avoid(plr_id, lst_systems_to_avoid) : long

//------------------------------------------------------------------------
// Forward Declarations
//------------------------------------------------------------------------
deffunc


enddeffunc

//------------------------------------------------------------------------
// AI_Orders_SolarSystems
//------------------------------------------------------------------------
function AI_Restricted_SolarSystems returns boolean
begin
  return FALSE

  if Sys_Using_AI_Minister(sys_long_Player_ID, "System Movement Restriction") then
    return TRUE
  endif

end

//------------------------------------------------------------------------